home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Ap-Az / AudioVideoLib1.15.cpt / AudioVideo Library / background_3312.txt < prev    next >
Text File  |  1991-03-04  |  43KB  |  1,802 lines

  1. -- background: 3312 from stack: in
  2. -- bmap block id: 3769
  3. -- flags: 4000
  4. -- background id: 0
  5. -- name: Tape
  6. ----- HyperTalk script -----
  7. on doPasteWhere
  8.   global sourcecopy,Bselcopy
  9.   answer "Paste may write over existing information" with "cancel" or "continue"
  10.   if it is "cancel" then exit doPasteWhere
  11.   put sourcecopy into field "RecSource"
  12.   if Bselcopy is not empty then
  13.     if the hilite of bkgnd button "Vol I" is true then doBothI
  14.     if the hilite of bkgnd button "Vol II" is true then doBothII
  15.     if the hilite of bkgnd button "Vol III" is true then doBothIII
  16.     click at location of bkgnd button "a-b"
  17.   else
  18.     answer "Paste to which?" with "Side A" or "Side B"
  19.     if it is "Side B" then
  20.       if the hilite of bkgnd button "Vol I" is true then doPasteToIB
  21.       if the hilite of bkgnd button "Vol II" is true then doPasteToIIB
  22.       if the hilite of bkgnd button "Vol III" is true then doPasteToIIIB
  23.     end if
  24.     if it is "Side A" then
  25.       if the hilite of bkgnd button "Vol I" is true then doPasteToIA
  26.       if the hilite of bkgnd button "Vol II" is true then doPasteToIIA
  27.       if the hilite of bkgnd button "Vol III" is true then doPasteToIIIA
  28.     end if
  29.   end if
  30. end doPasteWhere
  31.  
  32. on doPasteToIA
  33.   global artistcopy,titlecopy,selcopy,perfcopy
  34.   put artistcopy into field "artist"
  35.   put titlecopy into field "title"
  36.   put selcopy into field "IA"
  37.   put perfcopy into field "IAperf"
  38. end doPasteToIA
  39.  
  40. on doPasteToIIA
  41.   global artistcopy,titlecopy,selcopy,perfcopy
  42.   put artistcopy into field "IIAartist"
  43.   put titlecopy into field "IIAtitle"
  44.   put selcopy into field "IIA"
  45.   put perfcopy into field "IIAperf"
  46. end doPasteToIIA
  47.  
  48. on doPasteToIIIA
  49.   global artistcopy,titlecopy,selcopy,perfcopy
  50.   put artistcopy into field "IIIAartist"
  51.   put titlecopy into field "IIIAtitle"
  52.   put selcopy into field "IIIA"
  53.   put perfcopy into field "IIIAperf"
  54. end doPasteToIIIA
  55.  
  56. on doPasteToIB
  57.   global artistcopy,titlecopy,selcopy,perfcopy
  58.   put artistcopy into field "IBartist"
  59.   put titlecopy into field "IBtitle"
  60.   put selcopy into field "IB"
  61.   put perfcopy into field "IBperf"
  62. end doPasteToIB
  63.  
  64. on doPasteToIIB
  65.   global artistcopy,titlecopy,selcopy,perfcopy
  66.   put artistcopy into field "IIBartist"
  67.   put titlecopy into field "IIBtitle"
  68.   put selcopy into field "IIB"
  69.   put perfcopy into field "IIBperf"
  70. end doPasteToIIB
  71.  
  72. on doPasteToIIIB
  73.   global artistcopy,titlecopy,selcopy,perfcopy
  74.   put artistcopy into field "IIIBartist"
  75.   put titlecopy into field "IIIBtitle"
  76.   put selcopy into field "IIIB"
  77.   put perfcopy into field "IIIBperf"
  78. end doPasteToIIIB
  79.  
  80. on doToLabel
  81.   answer "Go to or transfer visible volume to labeler?" with "cancel" or "go to" or "transfer"
  82.   if it is "cancel" then exit doToLabel
  83.   if it is "go to"
  84.   then go to card "labeler" of stack "AudioVideoUtilities"
  85. else
  86.   lock screen
  87.   put empty into quivalent
  88.   put first word of line 1 of field "recording label" into tapebrand
  89.   if tapebrand is "General" then put "GE" into tapebrand
  90.   put field "length" into tapelength
  91.   put field "catalog number" into catalog
  92.   answer "Port to label with :" with "title only" or "artist / title" or "artist: title"
  93.   put it into Reply
  94.   if Reply is not "title only" then
  95.     answer "Entire names of artists or last names only?" with "entire" or "last name"
  96.     put it into whichname
  97.   end if
  98.   if the hilite of bkgnd button "Vol I" is true then
  99.     if field "artist" is field "IBartist" and field "title" is field "IBtitle" then put 1 into quivalent
  100.     if Reply is "artist: title" then
  101.       if whichname is "last name" then
  102.         put last word of first line of field "artist" & ": " & field "title" into Atitle
  103.         put last word of first line of field "IBartist" & ": " & field "IBtitle" into Btitle
  104.       else
  105.         put field "artist" & ":" && field "title" into Atitle
  106.         put field "IBartist" & ":" && field "IBtitle" into Btitle
  107.       end if
  108.     end if
  109.     if Reply is "artist / title" then
  110.       if whichname is "last name"
  111.       then put last word of field "artist" into Atitle
  112.     else put field "artist" into Atitle
  113.     put field "title" into Btitle
  114.   end if
  115.   if Reply is "title only" then
  116.     put field "title" into Atitle
  117.     put field "IBtitle" into Btitle
  118.   end if
  119.   put field "artist" into Aartistcopy
  120.   put field "IBartist" into Bartistcopy
  121.   put field "IA" into Aselcopy
  122.   put field "IB" into Bselcopy
  123.   put field "noiseReduction" into NoiseReduct
  124. end if
  125. if the hilite of bkgnd button "Vol II" is true then
  126.   if field "IIAartist" is field "IIBartist" and field "IIAtitle" is field "IIBtitle" then put 1 into quivalent
  127.   if Reply is not "artist: title" then
  128.     if whichname is "last name" then
  129.       put last word of first line of field "IIAartist" & ": " & field "IIAtitle" into Atitle
  130.       put last word of first line of field "IIBartist" & ": " & field "IIBtitle" into Btitle
  131.     else
  132.       put field "IIAartist" & ":" && field "IIAtitle" into Atitle
  133.       put field "IIBartist" & ":" && field "IIBtitle" into Btitle
  134.     end if
  135.     if Reply is "artist / title" then
  136.       if whichname is "last name"
  137.       then put last word of field "IIAartist" into Atitle
  138.     else put field "IIAartist" into Atitle
  139.     put field "IIAtitle" into Btitle
  140.   end if
  141. end if
  142. if Reply is "title only" then
  143.   put field "IIAtitle" into Atitle
  144.   put field "IIBtitle" into Btitle
  145. end if
  146. put field "IIAartist" into Aartistcopy
  147. put field "IIBartist" into Bartistcopy
  148. put field "IIA" into Aselcopy
  149. put field "IIB" into Bselcopy
  150. put field "noiseReduction" into NoiseReduct
  151. end if
  152. if the hilite of bkgnd button "Vol III" is true then
  153.   if field "IIIAartist" is field "IIIBartist" and field "IIIAtitle" is field "IIIBtitle" then put 1 into quivalent
  154.   if Reply is not "artist: title" then
  155.     if whichname is "last name" then
  156.       put last word of first line of field "IIIAartist" & ": " & field "IIIAtitle" into Atitle
  157.       put last word of first line of field "IIIBartist" & ": " & field "IIIBtitle" into Btitle
  158.     else
  159.       put field "IIIAartist" & ":" && field "IIIAtitle" into Atitle
  160.       put field "IIIBartist" & ":" && field "IIIBtitle" into Btitle
  161.     end if
  162.     if Reply is "artist / title" then
  163.       if whichname is "last name"
  164.       then put last word of field "IIIAartist" into Atitle
  165.     else put field "IIIAartist" into Atitle
  166.     put field "IIIAtitle" into Btitle
  167.   end if
  168. end if
  169. if Reply is "title only" then
  170.   put field "IIIAtitle" into Atitle
  171.   put field "IIIBtitle" into Btitle
  172. end if
  173. put field "IIIAartist" into Aartistcopy
  174. put field "IIIBartist" into Bartistcopy
  175. put field "IIIAsel" into Aselcopy
  176. put field "IIIBsel" into Bselcopy
  177. put field "noiseReduction" into NoiseReduct
  178. end if
  179. if quivalent is 1 and Reply is not "artist / title"
  180. then answer "Do you wish Title to be single large area?" with "No" or "Yes"
  181. go to card "labeler" of stack "AudioVideoUtilities"
  182. click at location of button "clear"
  183. if it is "Yes" then click at location of cd button 13
  184. else click at location of cd button 14
  185. put Atitle into field "title"
  186. put Atitle into field "Atitle"
  187. put Btitle into field "Btitle"
  188. put Aartistcopy into line 1 of field "A1"
  189. put Bartistcopy into line 1 of field "B1"
  190. put Aselcopy into line 2 of field "A1"
  191. put Bselcopy into line 2 of field "B1"
  192. put NoiseReduct into field "noiseReduction"
  193. put tapelength into field "tape length"
  194. put tapebrand into field "tape brand"
  195. put catalog into field "catalog number"
  196. unlock screen
  197. end if
  198. end doToLabel
  199.  
  200. on doBothI
  201.   global artistcopy,titlecopy,perfcopy,selcopy,Bselcopy
  202.   put artistcopy into field "artist"
  203.   put titlecopy into field "title"
  204.   put perfcopy into field "IAperf"
  205.   put selcopy into field "IA"
  206.   put Bselcopy into field "IB"
  207. end doBothI
  208.  
  209. on doBothII
  210.   global artistcopy,titlecopy,perfcopy,selcopy,Bselcopy
  211.   put artistcopy into field "IIAartist"
  212.   put titlecopy into field "IIAtitle"
  213.   put perfcopy into field "IIAperf"
  214.   put selcopy into field "IIA"
  215.   put Bselcopy into field "IIB"
  216. end doBothII
  217.  
  218. on doBothIII
  219.   global artistcopy,titlecopy,perfcopy,selcopy,Bselcopy
  220.   put artistcopy into field "IIIAartist"
  221.   put titlecopy into field "IIIAtitle"
  222.   put perfcopy into field "IIIAperf"
  223.   put selcopy into field "IIIA"
  224.   put Bselcopy into field "IIIB"
  225. end doBothIII
  226.  
  227. on doCopyTAPE
  228.   answer "Copy visible volume to another volume?" with "Cancel" or "OK"
  229.   if it is "Cancel" then exit doCopyTape
  230.   if the hilite of bkgnd button "Vol I" is true then copy1
  231.   if the hilite of bkgnd button "Vol II" is true then copy2
  232.   if the hilite of bkgnd button "Vol III" is true then copy3
  233.   answer "Copy to which volume(s)?" with "vol II" or "vol III" or "vols II&III"
  234.   put it into reply
  235.   if reply is "vol II" then
  236.     doPasteToIIA
  237.     BAswap
  238.     doPasteToIIB
  239.   end if
  240.   if reply is "vol III" then
  241.     doPasteToIIIA
  242.     BAswap
  243.     doPasteToIIIB
  244.   end if
  245.   if reply is "vols II&III" then
  246.     doPasteToIIA
  247.     doPasteToIIB
  248.     BAswap
  249.     doPasteToIIIA
  250.     doPasteToIIIB
  251.   end if
  252. end doCopyTAPE
  253.  
  254.  
  255. on copy1
  256.   global artistcopy,titlecopy,perfcopy
  257.   global Bartistcopy,Btitlecopy,Bperfcopy
  258.   put bkgnd field "artist" into artistcopy
  259.   put bkgnd field "title" into titlecopy
  260.   put bkgnd field "IAperf" into perfcopy
  261.   put bkgnd field "IBartist" into Bartistcopy
  262.   put bkgnd field "IBtitle" into Btitlecopy
  263.   put bkgnd field "IBperf" into Bperfcopy
  264. end copy1
  265.  
  266. on copy2
  267.   global artistcopy,titlecopy,perfcopy
  268.   global Bartistcopy,Btitlecopy,Bperfcopy
  269.   put bkgnd field "IIAartist" into artistcopy
  270.   put bkgnd field "IIAtitle" into titlecopy
  271.   put bkgnd field "IIAperf" into perfcopy
  272.   put bkgnd field "IIBartist" into Bartistcopy
  273.   put bkgnd field "IIBtitle" into Btitlecopy
  274.   put bkgnd field "IIBperf" into Bperfcopy
  275. end copy2
  276.  
  277. on copy3
  278.   global artistcopy,titlecopy,perfcopy
  279.   global Bartistcopy,Btitlecopy,Bperfcopy
  280.   put bkgnd field "IIIAartist" into artistcopy
  281.   put bkgnd field "IIIAtitle" into titlecopy
  282.   put bkgnd field "IIIAperf" into perfcopy
  283.   put bkgnd field "IIIBartist" into Bartistcopy
  284.   put bkgnd field "IIIBtitle" into Btitlecopy
  285.   put bkgnd field "IIIBperf" into Bperfcopy
  286. end copy3
  287.  
  288. on BAswap
  289.   global artistcopy,titlecopy,perfcopy
  290.   global Bartistcopy,Btitlecopy,Bperfcopy
  291.   put Bartistcopy into artistcopy
  292.   put Btitlecopy into titlecopy
  293.   put Bperfcopy into perfcopy
  294. end BAswap
  295.  
  296.  
  297.  
  298.  
  299. -- part 10 (button)
  300. -- low flags: 00
  301. -- high flags: 4006
  302. -- rect: left=137 top=96 right=108 bottom=186
  303. -- title width / last selected line: 0
  304. -- icon id / first selected line: 0 / 0
  305. -- text alignment: 1
  306. -- font id: 0
  307. -- text size: 12
  308. -- style flags: 0
  309. -- line height: 16
  310. -- part name: Vol I
  311. ----- HyperTalk script -----
  312. on mouseUp
  313.   setTape1
  314. end mouseUp
  315.  
  316.  
  317.  
  318. -- part 11 (button)
  319. -- low flags: 00
  320. -- high flags: 0006
  321. -- rect: left=187 top=96 right=108 bottom=239
  322. -- title width / last selected line: 0
  323. -- icon id / first selected line: 0 / 0
  324. -- text alignment: 1
  325. -- font id: 0
  326. -- text size: 12
  327. -- style flags: 0
  328. -- line height: 16
  329. -- part name: Vol II
  330. ----- HyperTalk script -----
  331. on mouseUp
  332.   setTape2
  333. end mouseUp
  334.  
  335.  
  336.  
  337. -- part 12 (button)
  338. -- low flags: 00
  339. -- high flags: 0006
  340. -- rect: left=241 top=96 right=108 bottom=291
  341. -- title width / last selected line: 0
  342. -- icon id / first selected line: 0 / 0
  343. -- text alignment: 1
  344. -- font id: 0
  345. -- text size: 12
  346. -- style flags: 0
  347. -- line height: 16
  348. -- part name: Vol III
  349. ----- HyperTalk script -----
  350. on mouseUp
  351.   set the hilite of bkgnd button "Vol III" to false
  352.   if bkgnd field "numVol" contains "3" then
  353.     if the hilite of bkgnd button "Vol III" is false then
  354.       set the hilite of bkgnd button "Vol III" to true
  355.       set the hilite of bkgnd button "Vol I" to false
  356.       set the hilite of bkgnd button "Vol II" to false
  357.       hide bkgnd field "IA"
  358.       hide bkgnd field "artist"
  359.       hide bkgnd field "title"
  360.       hide bkgnd field "IAperf"
  361.       hide bkgnd field "IB"
  362.       hide bkgnd field "IBartist"
  363.       hide bkgnd field "IBtitle"
  364.       hide bkgnd field "IBperf"
  365.       hide bkgnd field "IIA"
  366.       hide bkgnd field "IIAartist"
  367.       hide bkgnd field "IIAtitle"
  368.       hide bkgnd field "IIAperf"
  369.       hide bkgnd field "IIB"
  370.       hide bkgnd field "IIBartist"
  371.       hide bkgnd field "IIBtitle"
  372.       hide bkgnd field "IIBperf"
  373.       show bkgnd field "IIIA"
  374.       show bkgnd field "IIIAartist"
  375.       show bkgnd field "IIIAtitle"
  376.       show bkgnd field "IIIAperf"
  377.       show bkgnd field "IIIB"
  378.       show bkgnd field "IIIBartist"
  379.       show bkgnd field "IIIBtitle"
  380.       show bkgnd field "IIIBperf"
  381.     end if
  382.   end if
  383. end mouseUp
  384.  
  385.  
  386.  
  387. -- part 20 (field)
  388. -- low flags: 01
  389. -- high flags: 0002
  390. -- rect: left=195 top=110 right=125 bottom=315
  391. -- title width / last selected line: 0
  392. -- icon id / first selected line: 0 / 0
  393. -- text alignment: 1
  394. -- font id: 3
  395. -- text size: 10
  396. -- style flags: 0
  397. -- line height: 13
  398. -- part name: content class
  399. ----- HyperTalk script -----
  400. on mouseDown
  401.   doContentClass
  402. end mouseDown
  403.  
  404.  
  405.  
  406. -- part 21 (field)
  407. -- low flags: 01
  408. -- high flags: 0002
  409. -- rect: left=184 top=128 right=143 bottom=376
  410. -- title width / last selected line: 0
  411. -- icon id / first selected line: 0 / 0
  412. -- text alignment: 1
  413. -- font id: 3
  414. -- text size: 10
  415. -- style flags: 0
  416. -- line height: 13
  417. -- part name: format
  418. ----- HyperTalk script -----
  419. on mouseDown
  420.   put "Tape Norm Bias TypeI 120¬µs Cassette;" & "Tape High Bias TypeII 70¬µs Cassette;" & "Tape High Bias TypeIV 70¬µs Cassette;" & "Tape - Open Reel;Tape - Digital Audio" into choices
  421.  
  422.   put the value of 1 into lastItem
  423.   get topLeft of target
  424.  
  425.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  426.  
  427.   if the result is not empty then put the result
  428.  
  429.   if item 1 of it is not empty then
  430.     put item 1 of it into bkgnd fld "format"
  431.   end if
  432. end mouseDown
  433.  
  434.  
  435.  
  436. -- part 22 (field)
  437. -- low flags: 01
  438. -- high flags: 0002
  439. -- rect: left=172 top=164 right=179 bottom=231
  440. -- title width / last selected line: 0
  441. -- icon id / first selected line: 0 / 0
  442. -- text alignment: 1
  443. -- font id: 3
  444. -- text size: 10
  445. -- style flags: 8192
  446. -- line height: 13
  447. -- part name: length
  448. ----- HyperTalk script -----
  449. on mouseDown
  450.   put "30 min;45 min;60 min;75 min;80 min;90 min;" & "100 min;110 min;120 min;1200 ft;1800 ft;" & "2500 ft;3600 ft"into choices
  451.  
  452.   put the value of 1 into lastItem
  453.   get topLeft of target
  454.  
  455.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  456.  
  457.   if the result is not empty then put the result
  458.  
  459.   if item 1 of it is not empty then
  460.     put item 1 of it into bkgnd fld "length"
  461.   end if
  462. end mouseDown
  463.  
  464.  
  465.  
  466. -- part 23 (field)
  467. -- low flags: 00
  468. -- high flags: 4002
  469. -- rect: left=0 top=71 right=282 bottom=135
  470. -- title width / last selected line: 0
  471. -- icon id / first selected line: 0 / 0
  472. -- text alignment: 0
  473. -- font id: 3
  474. -- text size: 9
  475. -- style flags: 0
  476. -- line height: 12
  477. -- part name: IA
  478.  
  479.  
  480. -- part 24 (field)
  481. -- low flags: 80
  482. -- high flags: 4002
  483. -- rect: left=0 top=71 right=282 bottom=135
  484. -- title width / last selected line: 0
  485. -- icon id / first selected line: 0 / 0
  486. -- text alignment: 0
  487. -- font id: 3
  488. -- text size: 9
  489. -- style flags: 0
  490. -- line height: 12
  491. -- part name: IIA
  492.  
  493.  
  494. -- part 25 (field)
  495. -- low flags: 80
  496. -- high flags: 4002
  497. -- rect: left=0 top=71 right=282 bottom=135
  498. -- title width / last selected line: 0
  499. -- icon id / first selected line: 0 / 0
  500. -- text alignment: 0
  501. -- font id: 3
  502. -- text size: 9
  503. -- style flags: 0
  504. -- line height: 12
  505. -- part name: IIIA
  506.  
  507.  
  508. -- part 26 (field)
  509. -- low flags: 00
  510. -- high flags: 4002
  511. -- rect: left=378 top=71 right=282 bottom=512
  512. -- title width / last selected line: 0
  513. -- icon id / first selected line: 0 / 0
  514. -- text alignment: 0
  515. -- font id: 3
  516. -- text size: 9
  517. -- style flags: 0
  518. -- line height: 12
  519. -- part name: IB
  520.  
  521.  
  522. -- part 27 (field)
  523. -- low flags: 80
  524. -- high flags: 4002
  525. -- rect: left=378 top=71 right=283 bottom=512
  526. -- title width / last selected line: 0
  527. -- icon id / first selected line: 0 / 0
  528. -- text alignment: 0
  529. -- font id: 3
  530. -- text size: 9
  531. -- style flags: 0
  532. -- line height: 12
  533. -- part name: IIB
  534.  
  535.  
  536. -- part 28 (field)
  537. -- low flags: 80
  538. -- high flags: 4002
  539. -- rect: left=378 top=71 right=282 bottom=512
  540. -- title width / last selected line: 0
  541. -- icon id / first selected line: 0 / 0
  542. -- text alignment: 0
  543. -- font id: 3
  544. -- text size: 9
  545. -- style flags: 0
  546. -- line height: 12
  547. -- part name: IIIB
  548.  
  549.  
  550. -- part 29 (field)
  551. -- low flags: 01
  552. -- high flags: 0002
  553. -- rect: left=351 top=79 right=94 bottom=376
  554. -- title width / last selected line: 0
  555. -- icon id / first selected line: 0 / 0
  556. -- text alignment: 1
  557. -- font id: 3
  558. -- text size: 10
  559. -- style flags: 256
  560. -- line height: 13
  561. -- part name: numVol
  562. ----- HyperTalk script -----
  563. on mouseDown
  564.   put "1;2;3" into choices
  565.  
  566.   put the value of 1 into lastItem
  567.   get topLeft of target
  568.  
  569.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  570.  
  571.   if the result is not empty then put the result
  572.  
  573.   if item 1 of it is not empty then
  574.     put item 1 of it into bkgnd fld "numVol"
  575.     if bkgnd fld "numVol" contains "1" then
  576.       setTape1
  577.     end if
  578.     if bkgnd fld "numVol" contains "2" then
  579.       if the hilite of bkgnd button "Vol III" is true then
  580.         setTape3
  581.       end if
  582.     end if
  583.   end if
  584. end mouseDown
  585.  
  586.  
  587.  
  588. -- part 34 (field)
  589. -- low flags: 80
  590. -- high flags: 0002
  591. -- rect: left=275 top=16 right=31 bottom=512
  592. -- title width / last selected line: 0
  593. -- icon id / first selected line: 0 / 0
  594. -- text alignment: 65535
  595. -- font id: 3
  596. -- text size: 10
  597. -- style flags: 0
  598. -- line height: 13
  599. -- part name: IIIBtitle
  600. ----- HyperTalk script -----
  601. on returnInField
  602.   click at 295,41
  603. end returnInField
  604.  
  605.  
  606.  
  607. -- part 35 (field)
  608. -- low flags: 80
  609. -- high flags: 0002
  610. -- rect: left=0 top=16 right=31 bottom=237
  611. -- title width / last selected line: 0
  612. -- icon id / first selected line: 0 / 0
  613. -- text alignment: 0
  614. -- font id: 3
  615. -- text size: 10
  616. -- style flags: 0
  617. -- line height: 13
  618. -- part name: IIIAtitle
  619. ----- HyperTalk script -----
  620. on returnInField
  621.   click at 2,41
  622. end returnInField
  623.  
  624.  
  625.  
  626. -- part 36 (field)
  627. -- low flags: 00
  628. -- high flags: 0002
  629. -- rect: left=0 top=0 right=15 bottom=199
  630. -- title width / last selected line: 0
  631. -- icon id / first selected line: 0 / 0
  632. -- text alignment: 0
  633. -- font id: 3
  634. -- text size: 10
  635. -- style flags: 256
  636. -- line height: 13
  637. -- part name: artist
  638. ----- HyperTalk script -----
  639. on returnInField
  640.   click at location of field "title"
  641. end returnInField
  642.  
  643.  
  644.  
  645. -- part 37 (field)
  646. -- low flags: 80
  647. -- high flags: 0002
  648. -- rect: left=313 top=0 right=15 bottom=512
  649. -- title width / last selected line: 0
  650. -- icon id / first selected line: 0 / 0
  651. -- text alignment: 65535
  652. -- font id: 3
  653. -- text size: 10
  654. -- style flags: 256
  655. -- line height: 13
  656. -- part name: IIIBartist
  657. ----- HyperTalk script -----
  658. on returnInField
  659.   click at location of field "IIIBtitle"
  660. end returnInField
  661.  
  662.  
  663. -- part 38 (field)
  664. -- low flags: 01
  665. -- high flags: 0002
  666. -- rect: left=271 top=164 right=179 bottom=376
  667. -- title width / last selected line: 0
  668. -- icon id / first selected line: 0 / 0
  669. -- text alignment: 1
  670. -- font id: 3
  671. -- text size: 10
  672. -- style flags: 0
  673. -- line height: 13
  674. -- part name: RecSource
  675. ----- HyperTalk script -----
  676. on mouseDown
  677.   put "Live Recording;Commercial Tape;Project Master;" & "Compact Disc;Vinyl Record;Cassette Tape;Open Reel;" & "Digital Audio Tape;Videotape;Laserdisc;Mixed Sources;Other" into choices
  678.  
  679.   put the value of 1 into lastItem
  680.   get topLeft of target
  681.  
  682.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  683.  
  684.   if the result is not empty then put the result
  685.  
  686.   if item 1 of it is not empty then
  687.     put item 1 of it into bkgnd fld "RecSource"
  688.     if item 1 of it is "Other" then
  689.       ask "Enter Recording Source"
  690.       if it is not empty then
  691.         put it into bkgnd field "RecSource"
  692.       end if
  693.     end if
  694.   end if
  695. end mouseDown
  696.  
  697.  
  698. -- part 39 (field)
  699. -- low flags: 80
  700. -- high flags: 0002
  701. -- rect: left=0 top=32 right=60 bottom=222
  702. -- title width / last selected line: 0
  703. -- icon id / first selected line: 0 / 0
  704. -- text alignment: 0
  705. -- font id: 3
  706. -- text size: 10
  707. -- style flags: 0
  708. -- line height: 13
  709. -- part name: IIIAperf
  710.  
  711.  
  712. -- part 40 (field)
  713. -- low flags: 80
  714. -- high flags: 0002
  715. -- rect: left=290 top=32 right=60 bottom=512
  716. -- title width / last selected line: 0
  717. -- icon id / first selected line: 0 / 0
  718. -- text alignment: 65535
  719. -- font id: 3
  720. -- text size: 10
  721. -- style flags: 0
  722. -- line height: 13
  723. -- part name: IIIBperf
  724.  
  725.  
  726. -- part 41 (field)
  727. -- low flags: 80
  728. -- high flags: 0002
  729. -- rect: left=0 top=32 right=60 bottom=222
  730. -- title width / last selected line: 0
  731. -- icon id / first selected line: 0 / 0
  732. -- text alignment: 0
  733. -- font id: 3
  734. -- text size: 10
  735. -- style flags: 0
  736. -- line height: 13
  737. -- part name: IIAperf
  738.  
  739.  
  740. -- part 42 (field)
  741. -- low flags: 00
  742. -- high flags: 0002
  743. -- rect: left=0 top=32 right=60 bottom=222
  744. -- title width / last selected line: 0
  745. -- icon id / first selected line: 0 / 0
  746. -- text alignment: 0
  747. -- font id: 3
  748. -- text size: 10
  749. -- style flags: 0
  750. -- line height: 13
  751. -- part name: IAperf
  752.  
  753.  
  754. -- part 43 (field)
  755. -- low flags: 00
  756. -- high flags: 0002
  757. -- rect: left=290 top=32 right=60 bottom=512
  758. -- title width / last selected line: 0
  759. -- icon id / first selected line: 0 / 0
  760. -- text alignment: 65535
  761. -- font id: 3
  762. -- text size: 10
  763. -- style flags: 0
  764. -- line height: 13
  765. -- part name: IIBperf
  766.  
  767.  
  768. -- part 44 (field)
  769. -- low flags: 00
  770. -- high flags: 0002
  771. -- rect: left=290 top=32 right=60 bottom=512
  772. -- title width / last selected line: 0
  773. -- icon id / first selected line: 0 / 0
  774. -- text alignment: 65535
  775. -- font id: 3
  776. -- text size: 10
  777. -- style flags: 0
  778. -- line height: 13
  779. -- part name: IBperf
  780.  
  781.  
  782. -- part 45 (field)
  783. -- low flags: 80
  784. -- high flags: 0002
  785. -- rect: left=0 top=16 right=31 bottom=237
  786. -- title width / last selected line: 0
  787. -- icon id / first selected line: 0 / 0
  788. -- text alignment: 0
  789. -- font id: 3
  790. -- text size: 10
  791. -- style flags: 0
  792. -- line height: 13
  793. -- part name: IIAtitle
  794. ----- HyperTalk script -----
  795. on returnInField
  796.   click at 2,41
  797. end returnInField
  798.  
  799.  
  800.  
  801. -- part 46 (field)
  802. -- low flags: 00
  803. -- high flags: 0002
  804. -- rect: left=0 top=16 right=31 bottom=237
  805. -- title width / last selected line: 0
  806. -- icon id / first selected line: 0 / 0
  807. -- text alignment: 0
  808. -- font id: 3
  809. -- text size: 10
  810. -- style flags: 0
  811. -- line height: 13
  812. -- part name: title
  813. ----- HyperTalk script -----
  814. on returnInField
  815.   click at 2,41
  816. end returnInField
  817.  
  818.  
  819.  
  820. -- part 47 (field)
  821. -- low flags: 80
  822. -- high flags: 0002
  823. -- rect: left=275 top=16 right=31 bottom=512
  824. -- title width / last selected line: 0
  825. -- icon id / first selected line: 0 / 0
  826. -- text alignment: 65535
  827. -- font id: 3
  828. -- text size: 10
  829. -- style flags: 0
  830. -- line height: 13
  831. -- part name: IIBtitle
  832. ----- HyperTalk script -----
  833. on returnInField
  834.   click at 295,41
  835. end returnInField
  836.  
  837.  
  838.  
  839. -- part 48 (field)
  840. -- low flags: 00
  841. -- high flags: 0002
  842. -- rect: left=275 top=16 right=31 bottom=512
  843. -- title width / last selected line: 0
  844. -- icon id / first selected line: 0 / 0
  845. -- text alignment: 65535
  846. -- font id: 3
  847. -- text size: 10
  848. -- style flags: 0
  849. -- line height: 13
  850. -- part name: IBtitle
  851. ----- HyperTalk script -----
  852. on returnInField
  853.   click at 295,41
  854. end returnInField
  855.  
  856.  
  857.  
  858. -- part 49 (field)
  859. -- low flags: 80
  860. -- high flags: 0002
  861. -- rect: left=0 top=0 right=15 bottom=199
  862. -- title width / last selected line: 0
  863. -- icon id / first selected line: 0 / 0
  864. -- text alignment: 0
  865. -- font id: 3
  866. -- text size: 10
  867. -- style flags: 256
  868. -- line height: 13
  869. -- part name: IIIAartist
  870. ----- HyperTalk script -----
  871. on returnInField
  872.   click at location of field "IIAtitle"
  873. end returnInField
  874.  
  875.  
  876.  
  877. -- part 50 (field)
  878. -- low flags: 80
  879. -- high flags: 0002
  880. -- rect: left=0 top=0 right=15 bottom=199
  881. -- title width / last selected line: 0
  882. -- icon id / first selected line: 0 / 0
  883. -- text alignment: 0
  884. -- font id: 3
  885. -- text size: 10
  886. -- style flags: 256
  887. -- line height: 13
  888. -- part name: IIIAartist
  889.  
  890.  
  891. -- part 53 (field)
  892. -- low flags: 00
  893. -- high flags: 0002
  894. -- rect: left=215 top=79 right=94 bottom=273
  895. -- title width / last selected line: 0
  896. -- icon id / first selected line: 0 / 0
  897. -- text alignment: 1
  898. -- font id: 3
  899. -- text size: 10
  900. -- style flags: 0
  901. -- line height: 13
  902. -- part name: catalog number
  903.  
  904.  
  905. -- part 54 (field)
  906. -- low flags: 01
  907. -- high flags: 0002
  908. -- rect: left=217 top=62 right=77 bottom=376
  909. -- title width / last selected line: 0
  910. -- icon id / first selected line: 0 / 0
  911. -- text alignment: 1
  912. -- font id: 3
  913. -- text size: 10
  914. -- style flags: 0
  915. -- line height: 13
  916. -- part name: recording label
  917. ----- HyperTalk script -----
  918. on mouseDown
  919.   put "audio tape,BASF,Denon,DIC,Fuji,General Electric,JVC,Loran," & "Maxell,Memorex,Nakamichi,Realistic,Recoton,Sony,TDK,3M,;(-;" & "Other;(-;A,A&M,Archiv,Arista,Atlantic,;C,Capitol,Chandos,Chrysalis," & "Columbia,Concord,;D,Delos,Denon,Deutsche Grammophon,DRM,;E,ECM," & "Elektra,EMI-Angel,Epic,Erato,;G,Geffen,GRP,;H,Harmonia Mundi," & "Hyperion,;I,Intima-Enigma,Island,;L,L'Oiseau-Lyre,London,Legato,;" & "M,MCA,Motown,Muse,;N,New World,Newport Classics,;P,Philips," & "Pro Arte,;R,RCA,Rhino,;S,Sire,;T,Telarc,;V,Vanguard,Virgin,;W,Warner" into choices
  920.  
  921.   put the value of 1 into lastItem
  922.   get topLeft of target
  923.  
  924.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  925.  
  926.   if item 1 of it is "Other" then
  927.     ask "Enter Recording Label or Tape Brand"
  928.     if it is not empty then
  929.       put it into bkgnd field "recording label"
  930.     end if
  931.   end if
  932.   if item 1 of it is "audio tape" and item 2 of it is not empty
  933.   then put (item 2 of it && item 1 of it) into field "recording label"
  934. else
  935.   if item 1 of it is not "audio tape" and item 2 of it is not empty
  936.   then put item 2 of it into field "recording label"
  937. end if
  938. end mouseDown
  939.  
  940.  
  941. -- part 55 (button)
  942. -- low flags: 00
  943. -- high flags: 0006
  944. -- rect: left=311 top=95 right=109 bottom=374
  945. -- title width / last selected line: 0
  946. -- icon id / first selected line: 0 / 0
  947. -- text alignment: 1
  948. -- font id: 0
  949. -- text size: 12
  950. -- style flags: 0
  951. -- line height: 16
  952. -- part name: Remarks
  953. ----- HyperTalk script -----
  954. on mouseUp
  955.   if the hilite of bkgnd button "Remarks" is false then
  956.     show bkgnd field "remarks"
  957.     set the hilite of bkgnd button "Remarks" to true
  958.   else
  959.     hide bkgnd field "remarks"
  960.     set the hilite of bkgnd button "Remarks" to false
  961.   end if
  962. end mouseUp
  963.  
  964.  
  965.  
  966. -- part 57 (field)
  967. -- low flags: 01
  968. -- high flags: 0002
  969. -- rect: left=216 top=146 right=161 bottom=376
  970. -- title width / last selected line: 0
  971. -- icon id / first selected line: 0 / 0
  972. -- text alignment: 1
  973. -- font id: 3
  974. -- text size: 10
  975. -- style flags: 0
  976. -- line height: 13
  977. -- part name: noiseReduction
  978. ----- HyperTalk script -----
  979. on mouseDown
  980.   put "None;Dolby B;Dolby C;dbx;Dolby B with HXPro;" & "Dolby C with HXPro;Dolby S with HXPro;Other" into choices
  981.  
  982.   put the value of 1 into lastItem
  983.   get topLeft of target
  984.  
  985.   get HPopUpMenu(choices, -lastItem, (item 2 of it),(item 1 of it))
  986.  
  987.   if the result is not empty then put the result
  988.  
  989.   if item 1 of it is not empty then
  990.     put item 1 of it into bkgnd fld "noiseReduction"
  991.     if item 1 of it is "Other" then
  992.       ask "Enter Noise Reduction System"
  993.       if it is not empty then
  994.         put it into bkgnd field "noiseReduction"
  995.       end if
  996.     end if
  997.   end if
  998. end mouseDown
  999.  
  1000.  
  1001. -- part 58 (button)
  1002. -- low flags: 00
  1003. -- high flags: 2000
  1004. -- rect: left=86 top=302 right=333 bottom=128
  1005. -- title width / last selected line: 0
  1006. -- icon id / first selected line: 0 / 0
  1007. -- text alignment: 1
  1008. -- font id: 0
  1009. -- text size: 12
  1010. -- style flags: 0
  1011. -- line height: 16
  1012. -- part name: CD
  1013. ----- HyperTalk script -----
  1014. on mouseUp
  1015.   goCD
  1016. end mouseUp
  1017.  
  1018.  
  1019.  
  1020. -- part 60 (button)
  1021. -- low flags: 00
  1022. -- high flags: 2000
  1023. -- rect: left=135 top=302 right=333 bottom=176
  1024. -- title width / last selected line: 0
  1025. -- icon id / first selected line: 0 / 0
  1026. -- text alignment: 1
  1027. -- font id: 0
  1028. -- text size: 12
  1029. -- style flags: 0
  1030. -- line height: 16
  1031. -- part name: LPswitch
  1032. ----- HyperTalk script -----
  1033. on mouseUp
  1034.   goLP
  1035. end mouseUp
  1036.  
  1037.  
  1038.  
  1039. -- part 61 (button)
  1040. -- low flags: 00
  1041. -- high flags: 2000
  1042. -- rect: left=231 top=302 right=333 bottom=272
  1043. -- title width / last selected line: 0
  1044. -- icon id / first selected line: 0 / 0
  1045. -- text alignment: 1
  1046. -- font id: 0
  1047. -- text size: 12
  1048. -- style flags: 0
  1049. -- line height: 16
  1050. -- part name: VIDEOswitch
  1051. ----- HyperTalk script -----
  1052. on mouseUp
  1053.   goVideo
  1054. end mouseUp
  1055.  
  1056.  
  1057.  
  1058. -- part 62 (button)
  1059. -- low flags: 00
  1060. -- high flags: 2000
  1061. -- rect: left=183 top=302 right=333 bottom=224
  1062. -- title width / last selected line: 0
  1063. -- icon id / first selected line: 0 / 0
  1064. -- text alignment: 1
  1065. -- font id: 0
  1066. -- text size: 12
  1067. -- style flags: 0
  1068. -- line height: 16
  1069. -- part name: TAPEdummy
  1070. ----- HyperTalk script -----
  1071. on mouseUp
  1072.   put the number of cards of this background into quant
  1073.   put ("AudioVideo Library currently contains " & quant & " sets of Tapes") into message box
  1074. end mouseUp
  1075.  
  1076.  
  1077.  
  1078. -- part 63 (button)
  1079. -- low flags: 00
  1080. -- high flags: 2000
  1081. -- rect: left=318 top=290 right=305 bottom=354
  1082. -- title width / last selected line: 0
  1083. -- icon id / first selected line: 0 / 0
  1084. -- text alignment: 1
  1085. -- font id: 0
  1086. -- text size: 12
  1087. -- style flags: 0
  1088. -- line height: 16
  1089. -- part name: NewCard
  1090. ----- HyperTalk script -----
  1091. on mouseUp
  1092.   setTape1
  1093.   visual effect scroll down
  1094.   doMenu New Card
  1095.   put "1" into bkgnd fld "numVol"
  1096. end mouseUp
  1097.  
  1098.  
  1099.  
  1100. -- part 64 (button)
  1101. -- low flags: 00
  1102. -- high flags: 2000
  1103. -- rect: left=394 top=290 right=305 bottom=430
  1104. -- title width / last selected line: 0
  1105. -- icon id / first selected line: 0 / 0
  1106. -- text alignment: 1
  1107. -- font id: 0
  1108. -- text size: 12
  1109. -- style flags: 0
  1110. -- line height: 16
  1111. -- part name: Play
  1112. ----- HyperTalk script -----
  1113. on mouseUp
  1114.   doPlay
  1115. end mouseUp
  1116.  
  1117.  
  1118.  
  1119. -- part 65 (button)
  1120. -- low flags: 00
  1121. -- high flags: 2000
  1122. -- rect: left=432 top=318 right=333 bottom=468
  1123. -- title width / last selected line: 0
  1124. -- icon id / first selected line: 0 / 0
  1125. -- text alignment: 1
  1126. -- font id: 0
  1127. -- text size: 12
  1128. -- style flags: 0
  1129. -- line height: 16
  1130. -- part name: SkipPrev
  1131. ----- HyperTalk script -----
  1132. on mouseUp
  1133.   go to previous card of this background
  1134. end mouseUp
  1135.  
  1136.  
  1137.  
  1138. -- part 66 (button)
  1139. -- low flags: 00
  1140. -- high flags: 2000
  1141. -- rect: left=470 top=318 right=333 bottom=506
  1142. -- title width / last selected line: 0
  1143. -- icon id / first selected line: 0 / 0
  1144. -- text alignment: 1
  1145. -- font id: 0
  1146. -- text size: 12
  1147. -- style flags: 0
  1148. -- line height: 16
  1149. -- part name: SkipNext
  1150. ----- HyperTalk script -----
  1151. on mouseUp
  1152.   go to next card of this background
  1153. end mouseUp
  1154.  
  1155.  
  1156.  
  1157. -- part 67 (button)
  1158. -- low flags: 00
  1159. -- high flags: 2000
  1160. -- rect: left=280 top=290 right=305 bottom=316
  1161. -- title width / last selected line: 0
  1162. -- icon id / first selected line: 0 / 0
  1163. -- text alignment: 1
  1164. -- font id: 0
  1165. -- text size: 12
  1166. -- style flags: 0
  1167. -- line height: 16
  1168. -- part name: Delete
  1169. ----- HyperTalk script -----
  1170. on mouseUp
  1171.   doDelete
  1172.   go to prev card of background "TAPE"
  1173. end mouseUp
  1174.  
  1175.  
  1176.  
  1177. -- part 68 (button)
  1178. -- low flags: 00
  1179. -- high flags: 2000
  1180. -- rect: left=394 top=318 right=333 bottom=430
  1181. -- title width / last selected line: 0
  1182. -- icon id / first selected line: 0 / 0
  1183. -- text alignment: 1
  1184. -- font id: 0
  1185. -- text size: 12
  1186. -- style flags: 0
  1187. -- line height: 16
  1188. -- part name: ToMaster
  1189. ----- HyperTalk script -----
  1190. on mouseUp
  1191.   doMenu first
  1192. end mouseUp
  1193.  
  1194.  
  1195.  
  1196. -- part 69 (field)
  1197. -- low flags: 01
  1198. -- high flags: 0002
  1199. -- rect: left=334 top=110 right=125 bottom=376
  1200. -- title width / last selected line: 0
  1201. -- icon id / first selected line: 0 / 0
  1202. -- text alignment: 1
  1203. -- font id: 3
  1204. -- text size: 10
  1205. -- style flags: 0
  1206. -- line height: 13
  1207. -- part name: year
  1208. ----- HyperTalk script -----
  1209. on mouseDown
  1210.   chooseYear
  1211. end mouseDown
  1212.  
  1213.  
  1214. -- part 70 (button)
  1215. -- low flags: 00
  1216. -- high flags: 2000
  1217. -- rect: left=470 top=290 right=305 bottom=506
  1218. -- title width / last selected line: 0
  1219. -- icon id / first selected line: 0 / 0
  1220. -- text alignment: 1
  1221. -- font id: 0
  1222. -- text size: 12
  1223. -- style flags: 0
  1224. -- line height: 16
  1225. -- part name: Next
  1226. ----- HyperTalk script -----
  1227. on mouseUp
  1228.   doMenu Next
  1229. end mouseUp
  1230.  
  1231.  
  1232.  
  1233. -- part 71 (button)
  1234. -- low flags: 00
  1235. -- high flags: 2000
  1236. -- rect: left=432 top=290 right=305 bottom=468
  1237. -- title width / last selected line: 0
  1238. -- icon id / first selected line: 0 / 0
  1239. -- text alignment: 1
  1240. -- font id: 0
  1241. -- text size: 12
  1242. -- style flags: 0
  1243. -- line height: 16
  1244. -- part name: Prev
  1245. ----- HyperTalk script -----
  1246. on mouseUp
  1247.   doMenu Prev
  1248. end mouseUp
  1249.  
  1250.  
  1251.  
  1252. -- part 72 (button)
  1253. -- low flags: 00
  1254. -- high flags: 2000
  1255. -- rect: left=356 top=290 right=307 bottom=392
  1256. -- title width / last selected line: 0
  1257. -- icon id / first selected line: 0 / 0
  1258. -- text alignment: 1
  1259. -- font id: 0
  1260. -- text size: 12
  1261. -- style flags: 0
  1262. -- line height: 16
  1263. -- part name: Search
  1264. ----- HyperTalk script -----
  1265. on mouseUp
  1266.   doSearch
  1267. end mouseUp
  1268.  
  1269.  
  1270.  
  1271. -- part 73 (button)
  1272. -- low flags: 00
  1273. -- high flags: 2000
  1274. -- rect: left=280 top=318 right=333 bottom=316
  1275. -- title width / last selected line: 0
  1276. -- icon id / first selected line: 0 / 0
  1277. -- text alignment: 1
  1278. -- font id: 0
  1279. -- text size: 12
  1280. -- style flags: 0
  1281. -- line height: 16
  1282. -- part name: PrintCard
  1283. ----- HyperTalk script -----
  1284. on mouseUp
  1285.   doPrint
  1286. end mouseUp
  1287.  
  1288.  
  1289.  
  1290. -- part 74 (button)
  1291. -- low flags: 00
  1292. -- high flags: 2000
  1293. -- rect: left=356 top=318 right=333 bottom=392
  1294. -- title width / last selected line: 0
  1295. -- icon id / first selected line: 0 / 0
  1296. -- text alignment: 1
  1297. -- font id: 0
  1298. -- text size: 12
  1299. -- style flags: 0
  1300. -- line height: 16
  1301. -- part name: Sort
  1302. ----- HyperTalk script -----
  1303. on mouseUp
  1304.   push card
  1305.   go to first card
  1306.   doSort
  1307. end mouseUp
  1308.  
  1309.  
  1310.  
  1311. -- part 88 (field)
  1312. -- low flags: 80
  1313. -- high flags: 0002
  1314. -- rect: left=313 top=0 right=15 bottom=512
  1315. -- title width / last selected line: 0
  1316. -- icon id / first selected line: 0 / 0
  1317. -- text alignment: 65535
  1318. -- font id: 3
  1319. -- text size: 10
  1320. -- style flags: 256
  1321. -- line height: 13
  1322. -- part name: IIBartist
  1323. ----- HyperTalk script -----
  1324. on returnInField
  1325.   click at location of field "IIBtitle"
  1326. end returnInField
  1327.  
  1328.  
  1329.  
  1330. -- part 89 (field)
  1331. -- low flags: 80
  1332. -- high flags: 0002
  1333. -- rect: left=0 top=0 right=15 bottom=199
  1334. -- title width / last selected line: 0
  1335. -- icon id / first selected line: 0 / 0
  1336. -- text alignment: 0
  1337. -- font id: 3
  1338. -- text size: 10
  1339. -- style flags: 256
  1340. -- line height: 13
  1341. -- part name: IIAartist
  1342. ----- HyperTalk script -----
  1343. on returnInField
  1344.   click at location of field "IIAtitle"
  1345. end returnInField
  1346.  
  1347.  
  1348.  
  1349. -- part 90 (button)
  1350. -- low flags: 00
  1351. -- high flags: 2000
  1352. -- rect: left=318 top=318 right=333 bottom=354
  1353. -- title width / last selected line: 0
  1354. -- icon id / first selected line: 0 / 0
  1355. -- text alignment: 1
  1356. -- font id: 0
  1357. -- text size: 12
  1358. -- style flags: 0
  1359. -- line height: 16
  1360. -- part name: Help
  1361. ----- HyperTalk script -----
  1362. on mouseUp
  1363.   push card
  1364.   go to card "TAPEhelp" of stack "AudioVideoUtilities"
  1365. end mouseUp
  1366.  
  1367.  
  1368.  
  1369. -- part 91 (field)
  1370. -- low flags: 00
  1371. -- high flags: 0002
  1372. -- rect: left=313 top=0 right=15 bottom=512
  1373. -- title width / last selected line: 0
  1374. -- icon id / first selected line: 0 / 0
  1375. -- text alignment: 65535
  1376. -- font id: 3
  1377. -- text size: 10
  1378. -- style flags: 256
  1379. -- line height: 13
  1380. -- part name: IBartist
  1381. ----- HyperTalk script -----
  1382. on returnInField
  1383.   click at location of field "IBtitle"
  1384. end returnInField
  1385.  
  1386.  
  1387.  
  1388. -- part 97 (button)
  1389. -- low flags: 00
  1390. -- high flags: 2000
  1391. -- rect: left=136 top=248 right=278 bottom=193
  1392. -- title width / last selected line: 0
  1393. -- icon id / first selected line: 0 / 0
  1394. -- text alignment: 1
  1395. -- font id: 0
  1396. -- text size: 12
  1397. -- style flags: 0
  1398. -- line height: 16
  1399. -- part name: a-b
  1400. ----- HyperTalk script -----
  1401. on mouseUp
  1402.   if the hilite of bkgnd button "Vol I" is true then
  1403.     get field "artist"
  1404.     if it is not empty then
  1405.       put it into field "IBartist"
  1406.       get field "title"
  1407.       put it into field "IBtitle"
  1408.       get field "IAperf"
  1409.       put it into field "IBperf"
  1410.     else
  1411.       put field "IBartist" into field "artist"
  1412.       put field "IBtitle" into field "title"
  1413.       put field "IBperf" into field "IAperf"
  1414.     end if
  1415.   end if
  1416.   if the hilite of bkgnd button "Vol II" is true then
  1417.     get field "IIAartist"
  1418.     if it is not empty then
  1419.       put it into field "IIBartist"
  1420.       get field "IIAtitle"
  1421.       put it into field "IIBtitle"
  1422.       get field "IIAperf"
  1423.       put it into field "IIBperf"
  1424.     else
  1425.       put field "IIBartist" into field "IIAartist"
  1426.       put field "IIBtitle" into field "IIAtitle"
  1427.       put field "IIBperf" into field "IIAperf"
  1428.     end if
  1429.   end if
  1430.   if the hilite of bkgnd button "Vol III" is true then
  1431.     get field "IIIAartist"
  1432.     if it is not empty then
  1433.       put it into field "IIIBartist"
  1434.       get field "IIIAtitle"
  1435.       put it into field "IIIBtitle"
  1436.       get field "IIIAperf"
  1437.       put it into field "IIIBperf"
  1438.     else
  1439.       put field "IIIBartist" into field "IIIAartist"
  1440.       put field "IIIBtitle" into field "IIIAtitle"
  1441.       put field "IIIBperf" into field "IIIAperf"
  1442.     end if
  1443.   end if
  1444. end mouseUp
  1445.  
  1446.  
  1447.  
  1448. -- part 98 (button)
  1449. -- low flags: 00
  1450. -- high flags: 2000
  1451. -- rect: left=194 top=248 right=280 bottom=257
  1452. -- title width / last selected line: 0
  1453. -- icon id / first selected line: 0 / 0
  1454. -- text alignment: 1
  1455. -- font id: 0
  1456. -- text size: 12
  1457. -- style flags: 0
  1458. -- line height: 16
  1459. -- part name: paste
  1460. ----- HyperTalk script -----
  1461. on mouseUp
  1462.   doPasteWhere
  1463. end mouseUp
  1464.  
  1465.  
  1466.  
  1467. -- part 99 (button)
  1468. -- low flags: 00
  1469. -- high flags: 2000
  1470. -- rect: left=317 top=248 right=280 bottom=378
  1471. -- title width / last selected line: 0
  1472. -- icon id / first selected line: 0 / 0
  1473. -- text alignment: 1
  1474. -- font id: 0
  1475. -- text size: 12
  1476. -- style flags: 0
  1477. -- line height: 16
  1478. -- part name: ->label
  1479. ----- HyperTalk script -----
  1480. on mouseUp
  1481.   doToLabel
  1482. end mouseUp
  1483.  
  1484.  
  1485.  
  1486. -- part 101 (button)
  1487. -- low flags: 00
  1488. -- high flags: 2000
  1489. -- rect: left=6 top=302 right=334 bottom=76
  1490. -- title width / last selected line: 0
  1491. -- icon id / first selected line: 0 / 0
  1492. -- text alignment: 1
  1493. -- font id: 0
  1494. -- text size: 12
  1495. -- style flags: 0
  1496. -- line height: 16
  1497. -- part name: Power
  1498. ----- HyperTalk script -----
  1499. on mouseUp
  1500.   doPower
  1501. end mouseUp
  1502.  
  1503.  
  1504.  
  1505. -- part 104 (button)
  1506. -- low flags: 00
  1507. -- high flags: A000
  1508. -- rect: left=256 top=250 right=279 bottom=317
  1509. -- title width / last selected line: 0
  1510. -- icon id / first selected line: 0 / 0
  1511. -- text alignment: 1
  1512. -- font id: 3
  1513. -- text size: 10
  1514. -- style flags: 10496
  1515. -- line height: 13
  1516. -- part name: copy
  1517. ----- HyperTalk script -----
  1518. on mouseUp
  1519.   doCopyTAPE
  1520. end mouseUp
  1521.  
  1522.  
  1523.  
  1524. -- part 102 (field)
  1525. -- low flags: 80
  1526. -- high flags: 4002
  1527. -- rect: left=9 top=253 right=341 bottom=504
  1528. -- title width / last selected line: 0
  1529. -- icon id / first selected line: 0 / 0
  1530. -- text alignment: 0
  1531. -- font id: 3
  1532. -- text size: 12
  1533. -- style flags: 0
  1534. -- line height: 16
  1535. -- part name: remarks
  1536.  
  1537.  
  1538. -- part 105 (button)
  1539. -- low flags: 00
  1540. -- high flags: 2000
  1541. -- rect: left=136 top=62 right=77 bottom=376
  1542. -- title width / last selected line: 0
  1543. -- icon id / first selected line: 0 / 0
  1544. -- text alignment: 1
  1545. -- font id: 0
  1546. -- text size: 12
  1547. -- style flags: 0
  1548. -- line height: 16
  1549. -- part name: rec label activate
  1550. ----- HyperTalk script -----
  1551. on mouseDown
  1552.   send mouseDown to field "recording label"
  1553. end mouseDown
  1554.  
  1555.  
  1556.  
  1557. -- part 106 (button)
  1558. -- low flags: 00
  1559. -- high flags: 2000
  1560. -- rect: left=278 top=79 right=94 bottom=376
  1561. -- title width / last selected line: 0
  1562. -- icon id / first selected line: 0 / 0
  1563. -- text alignment: 1
  1564. -- font id: 0
  1565. -- text size: 12
  1566. -- style flags: 0
  1567. -- line height: 16
  1568. -- part name: num vol activate
  1569. ----- HyperTalk script -----
  1570. on mouseDown
  1571.   send mouseDown to field "numVol"
  1572. end mouseDown
  1573.  
  1574.  
  1575.  
  1576. -- part 107 (button)
  1577. -- low flags: 00
  1578. -- high flags: 2000
  1579. -- rect: left=136 top=110 right=125 bottom=314
  1580. -- title width / last selected line: 0
  1581. -- icon id / first selected line: 0 / 0
  1582. -- text alignment: 1
  1583. -- font id: 0
  1584. -- text size: 12
  1585. -- style flags: 0
  1586. -- line height: 16
  1587. -- part name: content class activate
  1588. ----- HyperTalk script -----
  1589. on mouseDown
  1590.   send mouseDown to field "content class"
  1591. end mouseDown
  1592.  
  1593.  
  1594.  
  1595. -- part 108 (button)
  1596. -- low flags: 00
  1597. -- high flags: 2000
  1598. -- rect: left=316 top=110 right=125 bottom=376
  1599. -- title width / last selected line: 0
  1600. -- icon id / first selected line: 0 / 0
  1601. -- text alignment: 1
  1602. -- font id: 0
  1603. -- text size: 12
  1604. -- style flags: 0
  1605. -- line height: 16
  1606. -- part name: year activate
  1607. ----- HyperTalk script -----
  1608. on mouseDown
  1609.   send mouseDown to field "year"
  1610. end mouseDown
  1611.  
  1612.  
  1613.  
  1614. -- part 109 (button)
  1615. -- low flags: 00
  1616. -- high flags: 2000
  1617. -- rect: left=135 top=128 right=143 bottom=376
  1618. -- title width / last selected line: 0
  1619. -- icon id / first selected line: 0 / 0
  1620. -- text alignment: 1
  1621. -- font id: 0
  1622. -- text size: 12
  1623. -- style flags: 0
  1624. -- line height: 16
  1625. -- part name: tape type activate
  1626. ----- HyperTalk script -----
  1627. on mouseDown
  1628.   send mouseDown to field "format"
  1629. end mouseDown
  1630.  
  1631.  
  1632.  
  1633. -- part 110 (button)
  1634. -- low flags: 00
  1635. -- high flags: 2000
  1636. -- rect: left=136 top=146 right=161 bottom=376
  1637. -- title width / last selected line: 0
  1638. -- icon id / first selected line: 0 / 0
  1639. -- text alignment: 1
  1640. -- font id: 0
  1641. -- text size: 12
  1642. -- style flags: 0
  1643. -- line height: 16
  1644. -- part name: noise reduction activate
  1645. ----- HyperTalk script -----
  1646. on mouseDown
  1647.   send mouseDown to field "noiseReduction"
  1648. end mouseDown
  1649.  
  1650.  
  1651.  
  1652. -- part 111 (button)
  1653. -- low flags: 00
  1654. -- high flags: 2000
  1655. -- rect: left=135 top=164 right=179 bottom=231
  1656. -- title width / last selected line: 0
  1657. -- icon id / first selected line: 0 / 0
  1658. -- text alignment: 1
  1659. -- font id: 0
  1660. -- text size: 12
  1661. -- style flags: 0
  1662. -- line height: 16
  1663. -- part name: length activate
  1664. ----- HyperTalk script -----
  1665. on mouseDown
  1666.   send mouseDown to field "length"
  1667. end mouseDown
  1668.  
  1669.  
  1670.  
  1671. -- part 112 (button)
  1672. -- low flags: 00
  1673. -- high flags: 2000
  1674. -- rect: left=232 top=164 right=179 bottom=376
  1675. -- title width / last selected line: 0
  1676. -- icon id / first selected line: 0 / 0
  1677. -- text alignment: 1
  1678. -- font id: 0
  1679. -- text size: 12
  1680. -- style flags: 0
  1681. -- line height: 16
  1682. -- part name: source activate
  1683. ----- HyperTalk script -----
  1684. on mouseDown
  1685.   send mouseDown to field "recSource"
  1686. end mouseDown
  1687.  
  1688.  
  1689.  
  1690. -- part 113 (button)
  1691. -- low flags: 00
  1692. -- high flags: 0000
  1693. -- rect: left=198 top=0 right=16 bottom=313
  1694. -- title width / last selected line: 0
  1695. -- icon id / first selected line: 0 / 0
  1696. -- text alignment: 1
  1697. -- font id: 0
  1698. -- text size: 12
  1699. -- style flags: 0
  1700. -- line height: 16
  1701. -- part name: artist user entry
  1702. ----- HyperTalk script -----
  1703. on mouseDown
  1704.   fieldMsg
  1705. end mouseDown
  1706.  
  1707.  
  1708.  
  1709. -- part 114 (button)
  1710. -- low flags: 00
  1711. -- high flags: 0000
  1712. -- rect: left=0 top=59 right=71 bottom=135
  1713. -- title width / last selected line: 0
  1714. -- icon id / first selected line: 0 / 0
  1715. -- text alignment: 1
  1716. -- font id: 0
  1717. -- text size: 12
  1718. -- style flags: 0
  1719. -- line height: 16
  1720. -- part name: user entry
  1721. ----- HyperTalk script -----
  1722. on mouseDown
  1723.   fieldMsg
  1724. end mouseDown
  1725.  
  1726.  
  1727.  
  1728. -- part 115 (button)
  1729. -- low flags: 00
  1730. -- high flags: 0000
  1731. -- rect: left=378 top=60 right=72 bottom=512
  1732. -- title width / last selected line: 0
  1733. -- icon id / first selected line: 0 / 0
  1734. -- text alignment: 1
  1735. -- font id: 0
  1736. -- text size: 12
  1737. -- style flags: 0
  1738. -- line height: 16
  1739. -- part name: user entry
  1740. ----- HyperTalk script -----
  1741. on mouseDown
  1742.   fieldMsg
  1743. end mouseDown
  1744.  
  1745.  
  1746.  
  1747. -- part 116 (button)
  1748. -- low flags: 00
  1749. -- high flags: 0000
  1750. -- rect: left=221 top=30 right=63 bottom=292
  1751. -- title width / last selected line: 0
  1752. -- icon id / first selected line: 0 / 0
  1753. -- text alignment: 1
  1754. -- font id: 0
  1755. -- text size: 12
  1756. -- style flags: 0
  1757. -- line height: 16
  1758. -- part name: user entry
  1759. ----- HyperTalk script -----
  1760. on mouseDown
  1761.   fieldMsg
  1762. end mouseDown
  1763.  
  1764.  
  1765.  
  1766. -- part 117 (button)
  1767. -- low flags: 00
  1768. -- high flags: 0000
  1769. -- rect: left=236 top=15 right=29 bottom=276
  1770. -- title width / last selected line: 0
  1771. -- icon id / first selected line: 0 / 0
  1772. -- text alignment: 1
  1773. -- font id: 0
  1774. -- text size: 12
  1775. -- style flags: 0
  1776. -- line height: 16
  1777. -- part name: user entry
  1778. ----- HyperTalk script -----
  1779. on mouseDown
  1780.   fieldMsg
  1781. end mouseDown
  1782.  
  1783.  
  1784.  
  1785. -- part 118 (button)
  1786. -- low flags: 00
  1787. -- high flags: 0000
  1788. -- rect: left=135 top=80 right=94 bottom=215
  1789. -- title width / last selected line: 0
  1790. -- icon id / first selected line: 0 / 0
  1791. -- text alignment: 1
  1792. -- font id: 0
  1793. -- text size: 12
  1794. -- style flags: 0
  1795. -- line height: 16
  1796. -- part name: user entry
  1797. ----- HyperTalk script -----
  1798. on mouseDown
  1799.   fieldMsg
  1800. end mouseDown
  1801.  
  1802.